home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-08-02 | 980 b | 52 lines | [TEXT/MPS ] |
- #ifndef __CYBERPANELEXTENSION__
- #define __CYBERPANELEXTENSION__
-
- #include "CyberExtension.idl"
-
-
- interface CyberPanelExtension;
-
- interface ODPart;
-
-
- //==============================================================================
- // CyberPanelExtension
- //==============================================================================
-
-
- interface CyberPanelExtension : CyberExtension
- {
- void SetContainingPart(in ODPart containingPart);
- void TabIn(in ODBoolean reverse);
- void TabOut(in ODBoolean reverse);
- void FlashOKButton();
- void FlashCancelButton();
- void EnableOKButton(in ODBoolean enabled);
-
- #ifdef __SOMIDL__
- implementation
- {
- functionprefix = CyberPanelExtension__;
-
- override:
- somInit;
-
- releaseorder:
- SetContainingPart,
- TabIn,
- TabOut,
- FlashOKButton,
- FlashCancelButton,
- EnableOKButton;
-
- majorversion = 1; minorversion = 0;
-
- #ifdef __PRIVATE__
- ODPart fContainingPart;
- #endif
- };
- #endif
- };
-
- #endif // __CYBERPANELEXTENSION__
-